/* global rules */
*{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
    font-family: 'Work Sans', sans-serif;
}
p {
    color: whitesmoke;
  }
.container{
    
    margin-right: auto;
    margin-left: auto;

    padding-left: 20px;
    padding-right: 20px;
}
@media (min-width:500px){
    .container{
        width:380px;
    }
}
@media (min-width:500px){
    .container{
        width:577px;
    }
}
@media (min-width:950px){
    .container{
        width:970px;
    }
}
@media (min-width:1200px){
    .container{
        width:1170px;
    }
}
/* start header */
.navbar{
    margin-left: 30px;
    margin-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
   
}
.brand{
    text-transform: capitalize;
    font-size: 25px;
    text-decoration: none;
    color:rgb(0, 0, 0);

}
.brand:hover{
    color:rgb(24, 143, 223);
}
.brand span{
    font-size: 30px;
    color: rgb(24, 143, 223);
}
.navbar-links ul{
    margin: 0;
    margin-bottom: 10px;
    padding: 0;
    display: flex;
    opacity: .9;
    width: 100%;


}
.navbar-links li{
    list-style: none;
  width: 100%
}
.navbar-links li a{
    display:block;
    padding: 20px;
    text-decoration: none;
    text-transform:capitalize;
    color: rgb(0, 0, 0);
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
}
.navbar-links ul li a:hover{
    padding-left: 25px;
    color:rgb(14, 18, 211);
    border-bottom: 2px solid rgb(14, 18, 211) ;
}

.navbar-links li a:hover{
    color:rgb(14, 18, 211);
}
.toggle-button{
    position: absolute;
    top:.75rem;
    right:1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}
.toggle-button .bar{
    height: 2px;
    width: 100%;
    background-color: rgb(0, 0, 0);
    border-radius: 18px;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
}

@media (max-width:600px){
    .toggle-button{
        display: flex;
    }
    .navbar-links{
        display: none;
    }
    .navbar{
        flex-direction: column;
        align-items: flex-start;
    }
    .navbar-links ul{
        flex-direction: column;
        /* background-color: gray; */
    
    }
    .navbar-links li{
        text-align:center;
    }
    .navbar-links li a{
        padding: .5rem 1rem;
    }
    .navbar-links.active{
        display: flex;
    }
    .landing{

        display: block;
    }
}

/* start form  */

section{
    background-image: url(BOARD.jpg);
        background-repeat: repeat-y;
    background-size:cover ;
    height:140vh;
    
}

label{
    text-transform: capitalize;
    font-weight: bold;
    color: black;
}
table{

    display:flex;
    justify-content: center;
    background-color: rgb(18, 32, 235);
    margin-bottom: 50px;
   border:3px #0193b8 solid;
   background-image: linear-gradient(to bottom right ,rgb(224, 206, 206), rgb(122, 198, 228));
   box-shadow: 5px  10px 10px 3px #b1b0b0;
}
td{
color:rgb(243, 239, 239);
padding: 10px;

}

.form{
    width: 500px;
margin-left: 350px;
margin-top:80px
}   
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          input{
    border:2px rgb(31, 89, 177) solid;
    padding: 10px;
    width:100px;
    transition: width 0.4s ease-in-out;
    -webkit-transition: width 0.4s ease-in-out;
    -moz-transition: width 0.4s ease-in-out;
    -ms-transition: width 0.4s ease-in-out;
    -o-transition: width 0.4s ease-in-out;
}
input:focus{
    border-color: black;
    width: 150px;
}
button{
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    border-color: rgb(0, 0, 0);
    width:100px;
    padding:5px;
}
.form{
    margin: auto;
    margin-top:5px ;
}
.check{
    color:rgb(243, 239, 239) ;
    text-transform: lowercase;
    font-size: 16px;
    font-weight:400;
}
p{
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
}
p span{
    color: rgb(16, 168, 214);
    font-weight: bold;
    font-size: 25px;
}

